7bd5aa3ea5fdad71403f561c54a3832095c33a13,yamj3-core/src/main/java/org/yamj/core/api/json/CommonController.java,CommonController,getCountries,#OptionsSingleType#,356
Before Change
LOG.debug("Getting country list - Options: {}", options);
ApiWrapperList<ApiCountryDTO> wrapper = new ApiWrapperList<>(options);
wrapper.setResults(jsonApiStorageService.getCountries(wrapper));
return wrapper;
}
//</editor-fold>
After Change
LOG.debug("Getting country list - Options: {}", options);
ApiWrapperList<ApiCountryDTO> wrapper = new ApiWrapperList<>(options);
return wrapper.setResults(jsonApiStorageService.getCountries(wrapper));
}
//</editor-fold>